home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib4
/
v_06_08
/
v6n8047b.txt
< prev
next >
Wrap
Text File
|
1995-11-01
|
534b
|
24 lines
/* hr_quit.c - Disable the high resolution display mode by
* writing to the addresses of the appropriate soft switches.
* The value written is of no consequence. Returns void.
*
* Enviornment: Apple II, Aztec c65 V1.05B
* Programmer: Don Strayer
* Date: 15-Jun-88
*/
#include <hr_apple2.h,d2>
hr_quit()
{ char *swa; /* pointer to soft switch address */
swa = HR_OFF; /* disable hi res graphics mode */
*swa = '\0';
swa = HR_TXTON; /* enable text mode */
*swa = '\0';
return();
}